GtkSpinButton: Set the screen on the panel contexts
authorMatthias Clasen <mclasen@redhat.com>
Sat, 25 Oct 2014 17:31:57 +0000 (13:31 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 25 Oct 2014 17:31:57 +0000 (13:31 -0400)
Failure to do so results in custom styling leaking through in
the inspector. This is pretty obvious, now that the inspector
is using a separate display connection and is generally isolated
from style changes.

gtk/gtkspinbutton.c

index 55ae063fe8803fde858010509e095db1bed77443..5c4d92b55eff37819ab108d7dc62cc213ef0c730 100644 (file)
@@ -906,7 +906,7 @@ gtk_spin_button_panel_get_state (GtkSpinButton *spin_button,
 
 static GtkStyleContext *
 gtk_spin_button_panel_get_context (GtkSpinButton *spin_button,
-                                   GdkWindow *panel)
+                                   GdkWindow     *panel)
 {
   GtkSpinButtonPrivate *priv = spin_button->priv;
   GtkStyleContext **contextp;
@@ -921,6 +921,7 @@ gtk_spin_button_panel_get_context (GtkSpinButton *spin_button,
                                                  panel == priv->down_panel);
     }
 
+  gtk_style_context_set_screen (*contextp, gtk_widget_get_screen (GTK_WIDGET (spin_button)));
   gtk_style_context_set_state (*contextp, gtk_spin_button_panel_get_state (spin_button, panel));
 
   return *contextp;